yaml json files and json-schema
Table of Content
VSCode has the ability to display autocomplete suggestions for JSON and YAML format out of the box.
It’s use JSON schema to do it
JSON Schema#
JSON Schema is a specification that allows you to describe the structure of a JSON document and validate documents against that schema.
VSCode#
- Install YAML red hat
settings#
"yaml.schemas": {
"<shema file location>.json": "<file useage by schema>.yaml",
"<shema file location>.json": "<file useage by schema>.json"
},